library(mapview)
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.2 ✔ readr 2.1.4
## ✔ forcats 1.0.0 ✔ stringr 1.5.0
## ✔ ggplot2 3.4.2 ✔ tibble 3.2.1
## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0
## ✔ purrr 1.0.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(ozmaps)
library(here)
## here() starts at \\staff.ad.griffith.edu.au/ud/fr/s5323932/Documents/Practice_aquaculture
library(tmap)
library(sf)
## Linking to GEOS 3.11.1, GDAL 3.6.2, PROJ 9.1.1; sf_use_s2() is TRUE
This data is from: URL I downloaded this on: DATE
nsw<-st_read(here("raw_data/NSW_aqua/Aquaculture_Leases.shp")) # Reading in NSW aquaculture data
## Reading layer `Aquaculture_Leases' from data source
## `\\staff.ad.griffith.edu.au\ud\fr\s5323932\Documents\Practice_aquaculture\raw_data\NSW_aqua\Aquaculture_Leases.shp'
## using driver `ESRI Shapefile'
## Simple feature collection with 3052 features and 10 fields
## Geometry type: POLYGON
## Dimension: XY
## Bounding box: xmin: 149.8767 ymin: -37.25281 xmax: 153.5757 ymax: -28.19951
## Geodetic CRS: GDA94
plot(st_geometry(nsw))
mapview(ozmap_states) +
mapview(nsw)
title: “Plot QLD Aquaculture” output: html_document date: “2023-06-09”